home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 4361 < prev    next >
Encoding:
Internet Message Format  |  1996-08-06  |  1.5 KB

  1. Path: globe.indirect.com!snoopy
  2. From: chrism@xroads.com (Chris McCabe)
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: C++ compiler on UNIX
  5. Date: 29 Jan 1996 22:58:24 GMT
  6. Organization: Internet Direct, Inc.
  7. Message-ID: <4ejc6b$ac_002@news.indirect.com>
  8. References: <4e1n6h$9ka@ipo.ipoline.com>
  9. NNTP-Posting-Host: snoopy.infograph.com
  10. X-Newsreader: News Xpress Version 1.0 Beta #3
  11.  
  12. In article <4e1n6h$9ka@ipo.ipoline.com>, edwin@ipoline.com (Edwin Chan) wrote:
  13. >1. On any particular UNIX system, is there a generic command to find
  14. >out the version of compiler (C or C++) currently installed on a
  15. >system?
  16.  
  17.   Try using the what command:
  18.  
  19.   $ what /usr/bin/CC
  20.   /usr/bin/CC:
  21.           HP C++ HPCPLUSPLUS  A.03.65
  22.  
  23.   This only works on files that have an ident string embeded in them,
  24. which is a string that starts with "@(#)".  Your compiler executables
  25. may or may not have this string in them.  There is no method that is
  26. guaranteed to work.
  27.  
  28.  
  29. >2. Other than GNU C++ compiler, are there any third party C++ compiler
  30. >vendors other than those supplied by the UNIX hardware vendors such as
  31. >HP, IBM, Sun and SGI?
  32.  
  33.   If it is support you are concerned about, there is at least one company
  34. that supports the GNU compilers.  They will give you help as needed and
  35. fix bugs and such.  The company is Cygnus.  There may be others.
  36.  
  37.   You might check out CenterLine and other companies that supply complete
  38. development environments, but I think even they use native compilers.  There
  39. isn't much money to be made in that market unless you add significant value
  40. somehow.
  41.  
  42.   Hope this helps,
  43.    Chris
  44.